1 using System;
2
3 namespace
ProceduralToolkit
4 {

5     ///
<summary>
6     ///
Specifies directions along thee axes
7     ///
</summary>
8     
[Flags]
9     
public enum Directions
10     {
11         None =
0,
12         Left =
1,
13         Right =
2,
14         Down =
4,
15         Up =
8,
16         Back =
16,
17         Forward =
32,
18         XAxis = Left | Right,
19         YAxis = Down | Up,
20         ZAxis = Back | Forward,
21         All = Left | Right | Down | Up | Back | Forward
22     }
23 }


Gõ tìm kiếm nhanh...